|
|
L4T Multimedia API Reference28.1 Release |
Range template class.
This is a Tuple specialization containing 2 elements corresponding to the min and max values of the range, in that order. Values can be accessed using the named methods.


Public Member Functions | |
| Range () | |
| Range (const Tuple< 2, T > &other) | |
| Range (T init) | |
| Range (T _min, T _max) | |
| T & | min () |
| const T & | min () const |
| T & | max () |
| const T & | max () const |
| bool | empty () const |
| bool | operator== (const Tuple< N, T > &rhs) const |
| Returns true when every element in the two tuples are identical. More... | |
| bool | operator!= (const Tuple< N, T > &rhs) const |
| Returns true if there are any differences between the two tuples. More... | |
| Tuple< N, T > & | operator+= (const Tuple< N, T > &rhs) |
| Adds every element of another tuple to the elements of this tuple. More... | |
| Tuple< N, T > & | operator-= (const Tuple< N, T > &rhs) |
| Subtracts every element of another tuple from the elements of this tuple. More... | |
| Tuple< N, T > & | operator*= (const T &rhs) |
| Multiplies every element in the tuple by a single value. More... | |
| Tuple< N, T > & | operator/= (const T &rhs) |
| Divides every element in the tuple by a single value. More... | |
| const Tuple< N, T > | operator+ (const Tuple< N, T > &rhs) const |
| Returns the result of adding another tuple to this tuple. More... | |
| const Tuple< N, T > | operator- (const Tuple< N, T > &rhs) const |
| Returns the result of subtracting another tuple from this tuple. More... | |
| const Tuple< N, T > | operator* (const T &rhs) const |
| Returns the result of multiplying this tuple by a single value. More... | |
| const Tuple< N, T > | operator/ (const T &rhs) const |
| Returns the result of dividing this tuple by a single value. More... | |
| T & | operator[] (unsigned int i) |
| const T & | operator[] (unsigned int i) const |
Static Public Member Functions | |
| static unsigned int | tupleSize () |
| Returns the number of elements in the tuple. More... | |
Protected Attributes | |
| T | m_data [N] |
|
inline |
|
inline |
|
inline |
Definition at line 746 of file Types.h.
References Argus::Range< T >::max(), and Argus::Range< T >::min().
|
inline |
Definition at line 751 of file Types.h.
References Argus::Range< T >::max(), and Argus::Range< T >::min().
|
inline |
Definition at line 762 of file Types.h.
References Argus::Range< T >::max(), and Argus::Range< T >::min().
|
inline |
Definition at line 759 of file Types.h.
Referenced by Argus::Range< T >::empty(), and Argus::Range< T >::Range().
|
inline |
|
inline |
Definition at line 757 of file Types.h.
Referenced by Argus::Range< T >::empty(), and Argus::Range< T >::Range().
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Multiplies every element in the tuple by a single value.
Definition at line 515 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
|
inlineinherited |
Adds every element of another tuple to the elements of this tuple.
Definition at line 499 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
|
inlineinherited |
Subtracts every element of another tuple from the elements of this tuple.
Definition at line 507 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
|
inlineinherited |
Divides every element in the tuple by a single value.
Definition at line 523 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
Returns true when every element in the two tuples are identical.
Definition at line 487 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
Definition at line 554 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlineinherited |
Definition at line 555 of file Types.h.
References Argus::Tuple< N, T >::m_data.
|
inlinestaticinherited |
|
protectedinherited |